3.354 \(\int \frac {1}{\sqrt {1-c^2 x^2} (a+b \sin ^{-1}(c x))} \, dx\)

Optimal. Leaf size=16 \[ \frac {\log \left (a+b \sin ^{-1}(c x)\right )}{b c} \]

[Out]

ln(a+b*arcsin(c*x))/b/c

________________________________________________________________________________________

Rubi [A]  time = 0.05, antiderivative size = 16, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 1, integrand size = 25, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.040, Rules used = {4639} \[ \frac {\log \left (a+b \sin ^{-1}(c x)\right )}{b c} \]

Antiderivative was successfully verified.

[In]

Int[1/(Sqrt[1 - c^2*x^2]*(a + b*ArcSin[c*x])),x]

[Out]

Log[a + b*ArcSin[c*x]]/(b*c)

Rule 4639

Int[1/(((a_.) + ArcSin[(c_.)*(x_)]*(b_.))*Sqrt[(d_) + (e_.)*(x_)^2]), x_Symbol] :> Simp[Log[a + b*ArcSin[c*x]]
/(b*c*Sqrt[d]), x] /; FreeQ[{a, b, c, d, e}, x] && EqQ[c^2*d + e, 0] && GtQ[d, 0]

Rubi steps

\begin {align*} \int \frac {1}{\sqrt {1-c^2 x^2} \left (a+b \sin ^{-1}(c x)\right )} \, dx &=\frac {\log \left (a+b \sin ^{-1}(c x)\right )}{b c}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.05, size = 16, normalized size = 1.00 \[ \frac {\log \left (a+b \sin ^{-1}(c x)\right )}{b c} \]

Antiderivative was successfully verified.

[In]

Integrate[1/(Sqrt[1 - c^2*x^2]*(a + b*ArcSin[c*x])),x]

[Out]

Log[a + b*ArcSin[c*x]]/(b*c)

________________________________________________________________________________________

fricas [A]  time = 0.60, size = 19, normalized size = 1.19 \[ \frac {\log \left (-b \arcsin \left (c x\right ) - a\right )}{b c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(a+b*arcsin(c*x))/(-c^2*x^2+1)^(1/2),x, algorithm="fricas")

[Out]

log(-b*arcsin(c*x) - a)/(b*c)

________________________________________________________________________________________

giac [A]  time = 0.40, size = 17, normalized size = 1.06 \[ \frac {\log \left ({\left | b \arcsin \left (c x\right ) + a \right |}\right )}{b c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(a+b*arcsin(c*x))/(-c^2*x^2+1)^(1/2),x, algorithm="giac")

[Out]

log(abs(b*arcsin(c*x) + a))/(b*c)

________________________________________________________________________________________

maple [A]  time = 0.01, size = 17, normalized size = 1.06 \[ \frac {\ln \left (a +b \arcsin \left (c x \right )\right )}{b c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/(a+b*arcsin(c*x))/(-c^2*x^2+1)^(1/2),x)

[Out]

ln(a+b*arcsin(c*x))/b/c

________________________________________________________________________________________

maxima [A]  time = 0.41, size = 16, normalized size = 1.00 \[ \frac {\log \left (b \arcsin \left (c x\right ) + a\right )}{b c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(a+b*arcsin(c*x))/(-c^2*x^2+1)^(1/2),x, algorithm="maxima")

[Out]

log(b*arcsin(c*x) + a)/(b*c)

________________________________________________________________________________________

mupad [B]  time = 0.18, size = 16, normalized size = 1.00 \[ \frac {\ln \left (a+b\,\mathrm {asin}\left (c\,x\right )\right )}{b\,c} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/((a + b*asin(c*x))*(1 - c^2*x^2)^(1/2)),x)

[Out]

log(a + b*asin(c*x))/(b*c)

________________________________________________________________________________________

sympy [A]  time = 1.27, size = 42, normalized size = 2.62 \[ \begin {cases} \frac {x}{a} & \text {for}\: b = 0 \wedge c = 0 \\\frac {\begin {cases} - \frac {i \operatorname {acosh}{\left (c x \right )}}{c} & \text {for}\: \left |{c^{2} x^{2}}\right | > 1 \\\frac {\operatorname {asin}{\left (c x \right )}}{c} & \text {otherwise} \end {cases}}{a} & \text {for}\: b = 0 \\\frac {x}{a} & \text {for}\: c = 0 \\\frac {\log {\left (\frac {a}{b} + \operatorname {asin}{\left (c x \right )} \right )}}{b c} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(1/(a+b*asin(c*x))/(-c**2*x**2+1)**(1/2),x)

[Out]

Piecewise((x/a, Eq(b, 0) & Eq(c, 0)), (Piecewise((-I*acosh(c*x)/c, Abs(c**2*x**2) > 1), (asin(c*x)/c, True))/a
, Eq(b, 0)), (x/a, Eq(c, 0)), (log(a/b + asin(c*x))/(b*c), True))

________________________________________________________________________________________